Loading
Scriptbox
 VBScript Links 
 About VBscript 
 JavaScript Links 
 About JavaScript 
 Powershell Links 
 PSCRIPT the Script Launcher 
 PowerShell Shortcut Keys 
 About Powershell 
     VBScript
    JavaScript
    Powershell
Disclaimer
Contact
Latest 10 Scripts
Script search
  :: { Category } :: 0-9ABCDEFGHIJKLMNOPQRSTUVWXYZ
         

Search Options:  WMI  Win32_NetworkProtocol  Query  

 Content of WMI Win32_NetworkProtocol Query.js
MD5 Hash: ADC58E548ECA8C4CE0648AE384FBD94F
var wbemFlagReturnImmediately = 0x10;
var wbemFlagForwardOnly = 0x20;

var arrComputers = new Array(".");
for (i = 0; i < arrComputers.length; i++) {
WScript.Echo();
WScript.Echo("==========================================");
WScript.Echo("Computer: " + arrComputers[i]);
WScript.Echo("==========================================");

var objWMIService = GetObject("winmgmts:\\\\" + arrComputers[i] + "\\root\\CIMV2");
var colItems = objWMIService.ExecQuery("SELECT * FROM Win32_NetworkProtocol", "WQL",
wbemFlagReturnImmediately | wbemFlagForwardOnly);

var enumItems = new Enumerator(colItems);
for (; !enumItems.atEnd(); enumItems.moveNext()) {
var objItem = enumItems.item();

WScript.Echo("Caption: " + objItem.Caption);
WScript.Echo("ConnectionlessService: " + objItem.ConnectionlessService);
WScript.Echo("Description: " + objItem.Description);
WScript.Echo("GuaranteesDelivery: " + objItem.GuaranteesDelivery);
WScript.Echo("GuaranteesSequencing: " + objItem.GuaranteesSequencing);
WScript.Echo("InstallDate: " + WMIDateStringToDate(objItem.InstallDate));
WScript.Echo("MaximumAddressSize: " + objItem.MaximumAddressSize);
WScript.Echo("MaximumMessageSize: " + objItem.MaximumMessageSize);
WScript.Echo("MessageOriented: " + objItem.MessageOriented);
WScript.Echo("MinimumAddressSize: " + objItem.MinimumAddressSize);
WScript.Echo("Name: " + objItem.Name);
WScript.Echo("PseudoStreamOriented: " + objItem.PseudoStreamOriented);
WScript.Echo("Status: " + objItem.Status);
WScript.Echo("SupportsBroadcasting: " + objItem.SupportsBroadcasting);
WScript.Echo("SupportsConnectData: " + objItem.SupportsConnectData);
WScript.Echo("SupportsDisconnectData: " + objItem.SupportsDisconnectData);
WScript.Echo("SupportsEncryption: " + objItem.SupportsEncryption);
WScript.Echo("SupportsExpeditedData: " + objItem.SupportsExpeditedData);
WScript.Echo("SupportsFragmentation: " + objItem.SupportsFragmentation);
WScript.Echo("SupportsGracefulClosing: " + objItem.SupportsGracefulClosing);
WScript.Echo("SupportsGuaranteedBandwidth: " + objItem.SupportsGuaranteedBandwidth);
WScript.Echo("SupportsMulticasting: " + objItem.SupportsMulticasting);
WScript.Echo("SupportsQualityofService: " + objItem.SupportsQualityofService);
}
}

function WMIDateStringToDate(dtmDate)
{
if (dtmDate == null)
{
return "null date";
}
var strDateTime;
if (dtmDate.substr(4, 1) == 0)
{
strDateTime = dtmDate.substr(5, 1) + "/";
}
else
{
strDateTime = dtmDate.substr(4, 2) + "/";
}
if (dtmDate.substr(6, 1) == 0)
{
strDateTime = strDateTime + dtmDate.substr(7, 1) + "/";
}
else
{
strDateTime = strDateTime + dtmDate.substr(6, 2) + "/";
}
strDateTime = strDateTime + dtmDate.substr(0, 4) + " " +
dtmDate.substr(8, 2) + ":" +
dtmDate.substr(10, 2) + ":" +
dtmDate.substr(12, 2);
return(strDateTime);
}

   © 2008 - 2013 Boris Toll      :: Scripts available: 6.481 ::      :: scriptbox.toll.at ::      :: powered by www.toll.at ::
  Google Entries:n/a
  Yahoo Backlinks:n/a
  Live Backlinks:n/a
  del.icio.us Bookmarks:n/a
  Technorati Links:n/a